300
|
"rangearea", a range chart displays sets of data points, each of which is defined by multiple values for the same category, and emphasizes the distance between the two values. The category labels are displayed on the category axis. The plain Range chart fills in the area between the top and the bottom value for each data point. (data requires array of array of two-numbers, such as [[from, to]], supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ValueAxis.Format := 'value + `°`';
Series.Add('Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), ' +
'Dec(6 15)','Spain').Type := 'rangearea';
Series.Add('Jan(3 13), Feb(4 15), Mar(8 17), Apr(11 20), May(15 25), Jun(19 29), Jul(21 31), Aug(21 31), Sep(17 27), Oct(12 22), Nov(7 16), ' +
'Dec(4 14)','Spain').Type := 'rangearea';
EndUpdate();
end
|
299
|
"rangecolumn", single

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ValueAxis.Format := 'value + `°`';
Series.Add('Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), ' +
'Dec(6 15)','Spain').Type := 'RangeColumn';
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
298
|
"rangecolumn", a range column chart displays information as a range of data by plotting two Y-values (low and high) per data point. The vertical axis shows the values, and the horizontal axis shows the categories they belong to; in multiple-series range column charts, values are grouped by categories. (data requires array of array of two-numbers, such as [[from, to]], supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ValueAxis.Format := 'value + `°`';
Series.Add('Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), ' +
'Dec(6 15)','Spain').Type := 'RangeColumn';
Series.Add('Jan(3 13), Feb(4 15), Mar(8 17), Apr(11 20), May(15 25), Jun(19 29), Jul(21 31), Aug(21 31), Sep(17 27), Oct(12 22), Nov(7 16), ' +
'Dec(4 14)','Spain').Type := 'RangeColumn';
EndUpdate();
end
|
297
|
"pie", a pie chart (or a circle chart) is a circular statistical graphic which is divided into slices to illustrate numerical proportion. In a pie chart, the arc length of each slice (and consequently its central angle and area) is proportional to the quantity it represents. While it is named for its resemblance to a pie which has been sliced, there are variations on the way it can be presented. (data requires array of numbers, non-scrollable)
with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
set_Misc(EXGRAPHLib.MiscEnum.exPaddingInsidePie,TObject(2));
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'pie';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'pie';
end;
Legend.Visible := True;
EndUpdate();
end
|
296
|
"waterfall", a waterfall chart is a form of data visualization that helps in understanding the cumulative effect of sequentially introduced positive or negative values. These intermediate values can either be time based or category based. The waterfall chart is also known as a flying bricks chart or Mario chart due to the apparent suspension of columns (bricks) in mid-air. Often in finance, it will be referred to as a bridge. (data requires array of numbers, supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'waterfall';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'waterfall';
end;
Legend.Visible := True;
EndUpdate();
end
|
295
|
"radarcolumn", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'radarcolumn';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'radarcolumn';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
294
|
"radarcolumn", displays data in radial columns starting from one center point. The circle is divided into equal portions depending on the number of columns and each column group occupies one portion (similar with "radarArea" type, data requires array of numbers, non-scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'radarcolumn';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'radarcolumn';
end;
Legend.Visible := True;
EndUpdate();
end
|
293
|
"radarline", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'radarline';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'radarline';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
292
|
"radarline" (data requires array of numbers, non-scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'radarline';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'radarline';
end;
Legend.Visible := True;
EndUpdate();
end
|
291
|
"radararea", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'radararea';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'radararea';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
290
|
"radararea", a radar chart is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point. The relative position and angle of the axes is typically uninformative, but various heuristics, such as algorithms that plot data as the maximal total area, can be applied to sort the variables (axes) into relative positions that reveal distinct correlations, trade-offs, and a multitude of other comparative measures. (data requires array of numbers, non-scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'radararea';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'radararea';
end;
Legend.Visible := True;
EndUpdate();
end
|
289
|
"column", single

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'column';
EndUpdate();
end
|
288
|
"column", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'column';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'column';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
287
|
"column", a column chart or column graph is a chart or graph that presents categorical data with rectangular columns with heights proportional to the values that they represent. A horizontal column chart is called a bar chart. (data requires array of numbers, supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'column';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'column';
end;
Legend.Visible := True;
EndUpdate();
end
|
286
|
"line", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'line';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'line';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
285
|
"line", a line chart or line graph, also known as curve chart is a type of chart which displays information as a series of data points called 'markers' connected by straight line segments. It is a basic type of chart common in many fields. It is similar to a scatter plot except that the measurement points are ordered (typically by their x-axis value) and joined with straight line segments. A line chart is often used to visualize a trend in data over intervals of time - a time series - thus the line is often drawn chronologically. In these cases they are known as run charts. (data requires array of numbers, supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'line';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'line';
end;
Legend.Visible := True;
EndUpdate();
end
|
284
|
"area", stacked

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
with Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide') do
begin
Type := 'area';
Stack := 'group';
end;
with Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native') do
begin
Type := 'area';
Stack := 'group';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
283
|
"area", an area chart or area graph displays graphically quantitative data. It is based on the line chart. The area between axis and line are commonly emphasized with colors, textures and hatchings. Commonly one compares two or more quantities with an area chart. (data requires array of numbers, supports vertical field, scrollable)

with AxGraph1 do
begin
BeginUpdate();
Pad := TObject(18);
AutoFit := True;
with Series do
begin
Add('Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1.' +
'6)','Worldwide').Type := 'area';
Add('Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1.' +
'5)','Native').Type := 'area';
end;
Legend.Visible := True;
EndUpdate();
end
|
282
|
Define the color to show the frame around the pies

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series.Add('1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)','Population') do
begin
Type := 'Pie';
ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
Misc[EXGRAPHLib.SerieMiscEnum.exPieFrameColor] := TObject(255);
Misc[EXGRAPHLib.SerieMiscEnum.exLineSize] := TObject(4);
end;
EndUpdate();
end
|
281
|
Define the width of the line to show the serie

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series.Add('1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)','Population') do
begin
Type := 'Line';
Misc[EXGRAPHLib.SerieMiscEnum.exLineSize] := TObject(4);
end;
EndUpdate();
end
|
280
|
Changes the spline's tension and alpha curves

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series.Add('1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)','Population') do
begin
Type := 'Line';
Style := EXGRAPHLib.SerieStyleEnum.exSpline;
Misc[EXGRAPHLib.SerieMiscEnum.exSplineTension] := TObject(0);
Misc[EXGRAPHLib.SerieMiscEnum.exSplineAlpha] := TObject(1);
end;
EndUpdate();
end
|
279
|
Enables or disables the presentation of hollow representations. This indicates instances where the closing price exceeds the opening price, resulting in candlesticks characterized by unfilled bodies

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
Misc[EXGRAPHLib.SerieMiscEnum.exCandleAllowHollow] := TObject(False);
end;
EndUpdate();
end
|
278
|
Define the size to display the candle stick

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 18;
with CategoryAxis do
begin
Categories := 'Date';
Format := 'value mid 9 left 2';
end;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'ohlc';
Misc[EXGRAPHLib.SerieMiscEnum.exCandleStickSize] := TObject(2);
end;
EndUpdate();
end
|
277
|
Define the radius to show the plot on scatter-type charts

with AxGraph1 do
begin
BeginUpdate();
with Series.Add('11 22 33,44 55 66,77 88 99,12 34 56,78 90 23',Nil) do
begin
Type := 'bubble';
Misc[EXGRAPHLib.SerieMiscEnum.exScatterPlotSize] := TObject(64);
end;
with Series.Add('21 32 43,54 65 76,87 98 09,45 67 89,90 23 45',Nil) do
begin
Type := 'bubble';
Misc[EXGRAPHLib.SerieMiscEnum.exScatterPlotSize] := TObject(64);
end;
with Cursor do
begin
Visible := True;
ShowCursorXLine := False;
end;
EndUpdate();
end
|
276
|
Customizes the captions to be shown within the legend

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ValueAxis.AsPercent := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).LegendFormat := 'trim(label replace `Ocean` with ``)';
Legend.Visible := True;
EndUpdate();
end
|
275
|
Stacked (data points within a series are stacked on top of each other rather than plotted side by side)
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.MajorGridLines.Color := 'lightgray';
with Series do
begin
Add('Electronics(350),Clothing(200),Books(150)',TObject(2001)).Stack := 'A';
Add('Electronics(500),Clothing(150),Books(180)',TObject(2002)).Stack := 'A';
end;
Legend.Visible := True;
EndUpdate();
end
|
274
|
Draws a curved line

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series.Add('1920(1.8),1945(2.3),1970(3.7),1995(5.7),2020(7.8)','Population') do
begin
Type := 'Line';
Style := EXGRAPHLib.SerieStyleEnum.exSpline;
Misc[EXGRAPHLib.SerieMiscEnum.exLineSize] := TObject(2);
end;
EndUpdate();
end
|
273
|
Customizes the values to display on the chart (showValue property includes the exValue)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.Visible := False;
with Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil) do
begin
ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
ValueFormat := 'category + `<br><b>` + (percent format ``) + `%`';
end;
EndUpdate();
end
|
272
|
Shows or hides the serie's value-points, value-lines and values

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
EndUpdate();
end
|
271
|
Shows or hides the serie

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series do
begin
with Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil) do
begin
Visible := False;
Vertical := True;
Name := 2001;
end;
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil).Name := 2002;
end;
Legend.Visible := True;
EndUpdate();
end
|
270
|
Show bars graph (the serie is showing the data vertically or horizontally)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
VisualAppearance.Add(1,'gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASVA' +
'ceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCaJ' +
'okGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5BxE' +
'DCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQD' +
'AGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhgi' +
'oIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwKR' +
'HFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALEA' +
'Q40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJs' +
'EMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6U' +
'ZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgEDQ' +
'EMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArxw' +
'CKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6AcU' +
'AZwuAYAAAgBBAQ==');
with Series do
begin
with Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil) do
begin
Color := TObject(16777216);
Vertical := True;
end;
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil).Color := TObject(16777216);
end;
SeriesColors := 'red,RGB(255,128,0)';
EndUpdate();
end
|
269
|
Define the name of the chart serie which is visible in the legend

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with ValueAxis do
begin
AsPercent := True;
Format := '(value * 100 format `0`) + `%`';
end;
with Series do
begin
Add('Asian(10),Black(13),Hispanic(15),White(60),Other(7)','<fgcolor blue>Population');
Add('Asian(65),Black(69),Hispanic(67),White(70),Other(68)',Nil).Name := '<fgcolor teal>Height';
end;
Legend.Visible := True;
EndUpdate();
end
|
268
|
Define the visual appearance of the serie using EBN colors (method 3,mixt)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
VisualAppearance.Add(1,'gBFLBCJwBAEHhEJAAEhABVoDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFgmEgADIOAzyPAsVwSGobRpkEaIMiONoYR5Ac4yFA' +
'cQxHE6TZRGeQRRiGModT5HFIxXIsBgRECEQChFzQcCQAJUVZFdAyVQlDRCGSpJrkEC4cBCCZPTzUNR1LS9WS1DoaRJoG4ZHDUMJyS7dcjyHINGwxMinJrwKA6bi6BAwY' +
'YAEwUPAYcT9QaRZznOQaLhiQIdVxDNbURgWKgVBK/AiqCA7Bq2VpYZZmFB5VJ9P5LPiEcE+fAdTQHUS0dItPR7OiacJ4TpdF48BhVdY7UCEdoADYtYxCP6qSxiFDUDA/' +
'CsF5KloAAXm4VBfEuKJUFuZxSi6DouAY34NDWdItg2HgTjaWZHDuVpPAae4DkQGRwjyXBvlcE47iMdoelQDYyHcHJkGGFIAEAARAGkGJHEGVByBkVBUCSFhEgQIQ2BMR' +
'pDGQJAoHuEIXDUCAGBGAYBHsc4NhMNJOCqCJCDoKIKiKGIuC6CxjAiMgyguYw4iSXg2g2MZoEcEJJjGLA4CiBwwnSJQdEOcogHcEBKjGZBDCuB4xBSMQfEQcpUgAEoLg' +
'ICBMC6SBBDiPghkUEwEgkFJMEILBVCyR4RDiGQckcIY8DYCwJnGQA6hAJApBIRoSCSKQyE6FAlCkUhWhYJYpHIXoYCYIwcg0FZHiCeA0hqJpJjocIQmQWQeEmEpklkPh' +
'RhSZRZF4WYWmWWR+GEFRoCoEoGBmQpQiiAwTgMIh0G4DpokmToPh2KQpmaFYfCmCZ8jcH4EnITBYA+RpQkQLg3A0Iw8iMIAHgGQA3AsSZxjwPApkcYS5h4BAijQegRAs' +
'CRAjQH5EhKXIBBKS4pGSPQhgUAo4HUEtHhAPQxgqUoMmNjRQhAHA7G6I42CUM4HmEKA7jILIrDKTo0C0KxSlaNglhKXB/BMSBxFwUw6k4c4im2QZujwIJtCySYSGyFQY' +
'EOKwuk2M5tBEHpTjUbR7GQTgjgUUJym+QoyAwJwiDsSAxDQNJEi8fBXBePpxiGXA8AyMgbjMI5MHIXIenaRQvhwYp8BOMpskMM5PnMLQHAyQ4xAyIw4kWL4sGZDoxmiG' +
'wxkKLpxlQPQLi8TQaniUgziwap+BMbwRBsBJBjIO48hcHIHEGMAyAqbBbB6SZVjKLQnDuNptlsfBvA2Qx4iyKwM4GR6BBBMDAQwxQIDkA8BQQYoA+iqGSEUNgmxKhKDK' +
'LwVojQ3AGACBAFIFxCAgFIE8RgogUgcBiAsUY8BJAYCaLMPw/xgDwD2F8BYwxtBcCeBcNoWxOBwFIGEZgRgagGCcA0cYJwajOCiFwf4BRhAID4DARYxAEhcCgJkYwdQe' +
'B/CwCoeowhcgqBoAwAYWAxAVEiOIdAagkCLGCLmAoBwMB4DoEsRgYRwgyBkIcUg4BmAfZKEgQQUBGhCeGDYBAhQUDaBGBUAYeBHBVAcCIJ4KARCSCGGgbwcQjgaA4Gkf' +
'oxgfjkDUV8GAswLCDE8AIBwtAjAAAQAggIA=');
with Series do
begin
Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil).Color := TObject(16777216);
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil).Color := TObject(16777216);
end;
SeriesColors := 'red,RGB(255,128,0)';
EndUpdate();
end
|
267
|
Define the color to show the serie (method 2)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series do
begin
Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil);
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil);
end;
SeriesColors := 'red,RGB(255,128,0)';
EndUpdate();
end
|
266
|
Define the color to show the serie (method 1)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series do
begin
Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil).Color := 'red';
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil).Color := TObject(33023);
end;
EndUpdate();
end
|
265
|
Changes the position of the serie

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series do
begin
Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil);
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil);
end;
Series.Item[TObject(1)].Position := 0;
EndUpdate();
end
|
264
|
Referencing a series by its key

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with Series do
begin
Add('Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)',Nil).Key := '1st';
Add('Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)',Nil).Key := '2nd';
end;
Series.Item['2nd'].Visible := False;
EndUpdate();
end
|
263
|
Removes the serie (click to remove the serie)
// Click event - Occurs when the user presses and then releases the left mouse button over the control.
procedure TWinForm1.AxGraph1_ClickEvent(sender: System.Object; e: System.EventArgs);
begin
with AxGraph1 do
begin
Series.Remove(TObject(0));
end
end;
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil);
EndUpdate();
end
|
262
|
Clears the series (click to remove all series)
// Click event - Occurs when the user presses and then releases the left mouse button over the control.
procedure TWinForm1.AxGraph1_ClickEvent(sender: System.Object; e: System.EventArgs);
begin
with AxGraph1 do
begin
Series.Clear();
end
end;
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil);
EndUpdate();
end
|
261
|
Add multiple series (mixt)
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
set_Misc(EXGRAPHLib.MiscEnum.exBaseMajorUnits,'1,5');
CategoryAxis.MajorGridLines.Color := 'lightgray';
with ValueAxes do
begin
with Add('g+a') do
begin
End := TObject(0.66);
MajorGridLines.Step := 1000;
end;
with Add('p') do
begin
Start := TObject(0.66);
MajorGridLines.Step := 1000;
end;
end;
with Series do
begin
with Add('UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)','GDP') do
begin
Axis := 'g+a';
Stack := 'g+a';
end;
Add('UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)','Population').Axis := 'p';
with Add('UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)','Area') do
begin
Axis := 'g+a';
Stack := 'g+a';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
260
|
Add multiple series (same value-axis, stacked)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.MajorGridLines.Color := 'lightgray';
with Series do
begin
Add('UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)','GDP').Stack := 'g+a';
Add('UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)','Population');
Add('UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)','Area').Stack := 'g+a';
end;
Legend.Visible := True;
EndUpdate();
end
|
259
|
Add multiple series (same value-axis, all stacked)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.MajorGridLines.Color := 'lightgray';
with Series do
begin
Add('UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)','GDP').Stack := 'all';
Add('UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)','Population').Stack := 'all';
Add('UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)','Area').Stack := 'all';
end;
Legend.Visible := True;
EndUpdate();
end
|
258
|
Add multiple series (same value-axis)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.MajorGridLines.Color := 'lightgray';
with Series do
begin
Add('UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)','GDP');
Add('UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)','Population');
Add('UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)','Area');
end;
Legend.Visible := True;
EndUpdate();
end
|
257
|
Add multiple series (different value axes)

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
CategoryAxis.MajorGridLines.Color := 'lightgray';
with ValueAxes do
begin
with Add('g') do
begin
End := TObject(0.33);
Visible := False;
MajorGridLines.Step := 1000;
end;
with Add('p') do
begin
Start := TObject(0.33);
End := TObject(0.66);
Visible := False;
MajorGridLines.Step := 1000;
end;
with Add('a') do
begin
Start := TObject(0.66);
Visible := False;
MajorGridLines.Step := 1000;
end;
end;
with Series do
begin
Add('UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)','GDP').Axis := 'g';
Add('UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)','Population').Axis := 'p';
Add('UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)','Area').Axis := 'a';
end;
Legend.Visible := True;
EndUpdate();
end
|
256
|
Display the values over the columns

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ValuePoint := '0,,,,,,0';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
255
|
Define the pad, distance between value-label and its frame (the number indicated by the ValuePoint property in the 11-th position)
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,,,,,,8';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
254
|
Define the size of the frame around the value-label (the number indicated by the ValuePoint property in the 10-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,,,,,4';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
253
|
Define the color of the frame around the value-label (the color indicated by the ValuePoint property in the 9-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,,,,red';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
252
|
Define the background color of the value-label (the color indicated by the ValuePoint property in the 8-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,,,red';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
251
|
Define the length of the line (the number indicated by the ValuePoint property in the 7-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,,0';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
250
|
Define the size of the line from the value point to its label (the number indicated by the ValuePoint property in the 6-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,,4';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
249
|
Define the color of the line from the value point to its label (the color indicated by the ValuePoint property in the 5-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,,red';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
248
|
Define the size of the frame around the value point (the number indicated by the ValuePoint property in the 4-th position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,,4';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
247
|
Define the color of the frame around the value point (the color indicated by the ValuePoint property in the 3-rd position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',,red';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
246
|
Define the color of the value point (the color indicated by the ValuePoint property in the 2-nd position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := ',red';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
245
|
Define the size of the value point (the number indicated by the ValuePoint property in the first position)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 48;
ValuePoint := '16';
Series.Add('Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)',Nil).ShowValue := Integer(EXGRAPHLib.ShowValueEnum.exValue) Or Integer(EXGRAPHLib.ShowValueEnum.exLine) Or Integer(EXGRAPHLib.ShowValueEnum.exPoint);
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
244
|
Disables resizing the chart by drag and drop (resize the chart's value by clicking and dragging with the middle mouse button)
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 64;
AllowValueResize := EXGRAPHLib.AllowKeysEnum.exDisallow;
Series.Add('Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)',Nil);
Series.Add('Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)',Nil);
Cursor.Visible := True;
EndUpdate();
end
|
243
|
Scrolls programatically the chart
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 8;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
ValueAxis.Format := 'value format ``';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
end;
set_ScrollPos(EXGRAPHLib.ScrollBarEnum.exHScroll,256);
EndUpdate();
end
|
242
|
Disables scrolling the chart by clicking and dragging the chart
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 8;
AllowScroll := EXGRAPHLib.AllowKeysEnum.exDisallow;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
ValueAxis.Format := 'value format ``';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
end;
EndUpdate();
end
|
241
|
Disables the scroll bars
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 8;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
ValueAxis.Format := 'value format ``';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
end;
ScrollBars := EXGRAPHLib.ScrollBarsEnum.exNoScroll;
AllowScroll := EXGRAPHLib.AllowKeysEnum.exDisallow;
EndUpdate();
end
|
240
|
Hides the scroll bars
with AxGraph1 do
begin
BeginUpdate();
ValueSize := 8;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
ValueAxis.Format := 'value format ``';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
end;
ScrollBars := EXGRAPHLib.ScrollBarsEnum.exNoScroll;
EndUpdate();
end
|
239
|
The maximum value of the axis does not fit the view. Is there anything I can do to ensure that it fits the view

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil);
Pad := TObject(24);
EndUpdate();
end
|
238
|
Customizes the "no or invalid data" message

with AxGraph1 do
begin
Invalid := '<fgcolor red>no or invalid data';
FormatText := Integer(EXGRAPHLib.DrawTextFormatEnum.exTextAlignBottom) Or Integer(EXGRAPHLib.DrawTextFormatEnum.exTextAlignCenter);
end
|
237
|
Sorts descending the serie

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).Vertical := True;
Sort := '0:D';
EndUpdate();
end
|
236
|
Sorts ascending the serie

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).Vertical := True;
Sort := '0';
EndUpdate();
end
|
235
|
I changed the ValueSize property but it appears that it has no effect

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 32;
AutoFit := False;
CategoryAxis.Format := 'value replace `Ocean` with ``';
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).Type := 'Column';
EndUpdate();
end
|
234
|
Define the size to show a column or a bar within the chart

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 32;
CategoryAxis.Format := 'value replace `Ocean` with ``';
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil);
EndUpdate();
end
|
233
|
Customizes the tooltip (shown while the cursor hovers value-points of the chart)

with AxGraph1 do
begin
BeginUpdate();
set_Background(EXGRAPHLib.BackgroundPartEnum.exToolTipBackColor,$1);
set_Background(EXGRAPHLib.BackgroundPartEnum.exToolTipForeColor,$ffffff);
ToolTipFormat := '`<b>` + category + `</b><br>Value: ` + (value format ``)';
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).ShowValue := EXGRAPHLib.ShowValueEnum.exPoint;
EndUpdate();
end
|
232
|
Resizes the elements of the series to fit the control's content

with AxGraph1 do
begin
BeginUpdate();
Series.Add('1,2,3,4',Nil);
AutoFit := True;
EndUpdate();
end
|
231
|
Define the preset color scheme for the chart's series, encompassing both regular and reduced values

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 8;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv';
ValueAxis.Format := 'value format ``';
with Series.Add(Nil,Nil) do
begin
Name := 'msft';
Data := 'Open,High,Low,Close';
Type := 'candle';
end;
SeriesColors := 'gray';
SeriesColorsDecrease := 'black';
EndUpdate();
end
|
230
|
Define the default colors for the chart's series

with AxGraph1 do
begin
BeginUpdate();
VisualAppearance.Add(1,'gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASVA' +
'ceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCaJ' +
'okGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5BxE' +
'DCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQD' +
'AGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhgi' +
'oIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwKR' +
'HFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALEA' +
'Q40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJs' +
'EMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6U' +
'ZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgEDQ' +
'EMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArxw' +
'CKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6AcU' +
'AZwuAYAAAgBBAQ==');
set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,TObject(1));
AutoFit := True;
DataOptions := 'hdr=1 eor='';'' eof='' ''';
Data := 'Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10';
with ValueAxis do
begin
Format := 'value + `°`';
MajorGridLines.Color := 'transparent';
end;
with CategoryAxis do
begin
Categories := 'Month';
MajorGridLines.Color := 'lightgray';
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Min,Max';
Type := 'RangeColumn';
Vertical := True;
Color := TObject(16777216);
end;
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
229
|
Updates the x-axis, y-axis

with AxGraph1 do
begin
with XAxis.AxisLine do
begin
Width := 2;
Color := 'red';
end;
with YAxis.AxisLine do
begin
Width := 2;
Color := 'red';
end;
with Series.Add(Nil,Nil) do
begin
Data := '1 99 1,2 96 2,3 92 3,4 86 4,5 79 5,6 70 6,7 60 7,8 50 8,9 38 9,10 25 10,11 13 11';
Type := 'bubble';
Misc[EXGRAPHLib.SerieMiscEnum.exScatterPlotSize] := TObject(96);
end;
end
|
228
|
Updates the default/first value-axis

with AxGraph1 do
begin
with ValueAxis do
begin
Tfi := '<fgcolor red>';
end;
Series.Add('Friendster(121111111),Facebook(979750000),Flickr(79664888),Google Buzz(170000000),Google+(107319100),Hi5(900202990),Instagram(80' +
'202990),MySpace(80202990),Orkut(45067022),Pinterest(197319100),Reddit(360250000),Snapchat(280250000),TikTok(860250000),Tumblr(14' +
'6890156),Twitter(160250000),WeChat(118123370),Weibo(79195730),Whatsapp(1160250000),YouTube(844638200)',Nil);
end
|
227
|
Updates the default/first category-axis

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with CategoryAxis do
begin
Categories := 'Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania';
MajorGridLines.Color := 'lightgray';
end;
with Series do
begin
with Add('4600,1300,747,579,0,422,42',Nil) do
begin
Name := 'Population';
Type := 'Line';
Misc[EXGRAPHLib.SerieMiscEnum.exLineSize] := TObject(3);
end;
with Add('4458,3037,1018,2470,1784,1018,856',Nil) do
begin
Name := 'Area';
Type := 'Column';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
226
|
Add multiple series into the same view

with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
with CategoryAxis do
begin
Categories := 'Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania';
MajorGridLines.Color := 'lightgray';
end;
with Series do
begin
with Add('4600,1300,747,579,0,422,42',Nil) do
begin
Name := 'Population';
Type := 'Line';
Misc[EXGRAPHLib.SerieMiscEnum.exLineSize] := TObject(3);
end;
with Add('4458,3037,1018,2470,1784,1018,856',Nil) do
begin
Name := 'Area';
Type := 'Column';
end;
end;
Legend.Visible := True;
EndUpdate();
end
|
225
|
Do do I get the DAO version I have installed
with AxGraph1 do
begin
OutputDebugString( (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.35')) as DAO.PrivDBEngine).Version );
OutputDebugString( (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.36')) as DAO.PrivDBEngine).Version );
OutputDebugString( (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.120')) as DAO.PrivDBEngine).Version );
end
|
224
|
How do I get a list of interfaces the object implemenets
with AxGraph1 do
begin
BeginUpdate();
with (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.120')) as DAO.PrivDBEngine) do
begin
rs := (OpenDatabase('C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',Nil,Nil,Nil).OpenRecordset('MSFT',Nil,Nil,Nil) as DAO.Recordset2);
end;
OutputDebugString( (ComObj.CreateComObject(ComObj.ProgIDToClassID('Exontrol.PropertiesList')) as Object) );
DataSource := (rs as DAO.Recordset2);
EndUpdate();
end
|
223
|
Do do I get the ADO version I have installed
with AxGraph1 do
begin
OutputDebugString( 'ADO Version:' );
OutputDebugString( (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADODB.Connection')) as ADODB.Connection).Version );
end
|
222
|
DAO, ACCDB, 120

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
with (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.120')) as DAO.PrivDBEngine) do
begin
rs := (OpenDatabase('C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',Nil,Nil,Nil).OpenRecordset('MSFT',Nil,Nil,Nil) as DAO.Recordset2);
end;
DataSource := (rs as DAO.Recordset2);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
221
|
DAO, MDB, 120

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
with (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.120')) as DAO.PrivDBEngine) do
begin
rs := (OpenDatabase('C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',Nil,Nil,Nil).OpenRecordset('MSFT',Nil,Nil,Nil) as DAO.Recordset2);
end;
DataSource := (rs as DAO.Recordset2);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
220
|
DAO, MDB

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
with (ComObj.CreateComObject(ComObj.ProgIDToClassID('DAO.DBEngine.36')) as DAO.PrivDBEngine) do
begin
rs := OpenDatabase('C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.mdb',Nil,Nil,Nil).OpenRecordset('MSFT',Nil,Nil,Nil);
end;
DataSource := (rs as DAO.Recordset);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
219
|
ADODB, ACCDB, x64

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
rs := (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADODB.Recordset')) as ADODB.Recordset);
with rs do
begin
Open('MSFT','Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',1,1,Nil);
end;
DataSource := (rs as ADODB.Recordset);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
218
|
ADOR, ACCDB

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
rs := (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADOR.Recordset')) as ADODB.Recordset);
with rs do
begin
Open('MSFT','Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',3,3,Nil);
end;
DataSource := (rs as ADODB.Recordset);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
217
|
ADODB, MDB

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
rs := (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADODB.Recordset')) as ADODB.Recordset);
with rs do
begin
Open('MSFT','Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',3,3,Nil);
end;
DataSource := (rs as ADODB.Recordset);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
216
|
ADOR, MDB

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
rs := (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADOR.Recordset')) as ADODB.Recordset);
with rs do
begin
Open('MSFT','Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',3,3,Nil);
end;
DataSource := (rs as ADODB.Recordset);
with CategoryAxis do
begin
Categories := 'Date';
with ChartGridLines do
begin
Format := 'value left 7';
Align := EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect;
Color := 'lightgray';
end;
Format := 'value left 7';
Split := True;
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Open,High,Low,Close';
Type := 'ohlc';
end;
EndUpdate();
end
|
215
|
The value-axis gets updated as soon as the control is scrolled. It is possible to prevent that

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 2;
set_Misc(EXGRAPHLib.MiscEnum.exUpdateRangeOnScroll,TObject(0));
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt';
OutputDebugString( DataSample );
Series.Add('AAPL (open),AAPL (high),AAPL (low),AAPL (close)',Nil).Type := 'candle';
EndUpdate();
end
|
214
|
Debug the data I loaded, or gatter a data sample

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt';
OutputDebugString( DataSample );
EndUpdate();
end
|
213
|
Imports the control's data from a safe array (array, method 3)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
rs := (ComObj.CreateComObject(ComObj.ProgIDToClassID('ADOR.Recordset')) as ADODB.Recordset);
with rs do
begin
Open('MSFT','Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb',3,3,Nil);
end;
Data := rs.GetRows(Nil,Nil,Nil);
OutputDebugString( DataSample );
with Series.Add(Nil,Nil) do
begin
Data := 'Column 2,Column 3,Column 4,Column 5';
Type := 'candle';
end;
EndUpdate();
end
|
212
|
Imports the control's data from a CSV format (file, method 2)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
Data := 'C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt';
with Series.Add(Nil,Nil) do
begin
Name := 'aapl';
Data := 'AAPL (open),AAPL (high),AAPL (low),AAPL (close)';
Type := 'candle';
end;
EndUpdate();
end
|
211
|
Imports the control's data from a CSV format (content, string, method 2)

with AxGraph1 do
begin
BeginUpdate();
set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,TObject(1));
AutoFit := True;
DataOptions := 'hdr=1 eor='';'' eof='' ''';
Data := 'Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10';
with ValueAxis do
begin
Format := 'value + `°`';
MajorGridLines.Color := 'transparent';
end;
with CategoryAxis do
begin
Categories := 'Month';
MajorGridLines.Color := 'lightgray';
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Min,Max';
Type := 'RangeColumn';
Vertical := True;
end;
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
210
|
Imports the control's data from a CSV format (file, method 1)

with AxGraph1 do
begin
BeginUpdate();
ValueSize := 6;
Import('C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt',Nil);
with Series.Add(Nil,Nil) do
begin
Name := 'aapl';
Data := 'AAPL (open),AAPL (high),AAPL (low),AAPL (close)';
Type := 'candle';
end;
EndUpdate();
end
|
209
|
Imports the control's data from a CSV format (content, string, method 1)

with AxGraph1 do
begin
BeginUpdate();
set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,TObject(1));
AutoFit := True;
Import('Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10','hdr=1 eor='';'' eof='' ''');
with ValueAxis do
begin
Format := 'value + `°`';
MajorGridLines.Color := 'transparent';
end;
with CategoryAxis do
begin
Categories := 'Month';
MajorGridLines.Color := 'lightgray';
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Min,Max';
Type := 'RangeColumn';
Vertical := True;
end;
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
208
|
Define the field delimitators, such as eor(end of record), eof(end of field) and hdr(header)

with AxGraph1 do
begin
BeginUpdate();
set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,TObject(1));
AutoFit := True;
DataOptions := 'hdr=1 eor='';'' eof='' ''';
Data := 'Month Min Max;Jan -5 2;Feb -4 7;Mar 1 12;Apr 5 17;May 10 23;Jun 14 26;Jul 15 28;Aug 14 28;Sep 11 25;Oct 5 18;Nov 1 9;Dec -3 4';
with ValueAxis do
begin
Format := 'value + `°`';
MajorGridLines.Color := 'transparent';
end;
with CategoryAxis do
begin
Categories := 'Month';
MajorGridLines.Color := 'lightgray';
end;
with Series.Add(Nil,Nil) do
begin
Data := 'Min,Max';
Type := 'RangeColumn';
end;
SeriesColors := 'RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(2' +
'55,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)';
EndUpdate();
end
|
207
|
Define the size of the control's tooltip margins

// MouseMove event - Occurs when the user moves the mouse.
procedure TWinForm1.AxGraph1_MouseMoveEvent(sender: System.Object; e: AxEXGRAPHLib._IGraphEvents_MouseMoveEvent);
begin
with AxGraph1 do
begin
ShowToolTip('just a text to be shown when cursor hovers the view','title',Nil,Nil,Nil);
end
end;
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
ToolTipMargin := '16,16';
Series.Add('Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)',Nil);
EndUpdate();
end
|
206
|
Sets the size of icons the control displays

with AxGraph1 do
begin
BeginUpdate();
ImageSize := 32;
Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' +
'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' +
'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' +
'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
AutoFit := True;
Series.Add('<img>1</img>Asia(4600),<img>2</img>Africa(1300),<img>3</img>Europe(747),<img>4</img>North America(579),<img>5</img>South America' +
'(433),<img>6</img>Australia/Oceania(42)',Nil);
SeriesColors := 'blue';
EndUpdate();
end
|
205
|
Prevents the control to fire any event

with AxGraph1 do
begin
FreezeEvents(True);
BeginUpdate();
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).Vertical := True;
EndUpdate();
FreezeEvents(False);
end
|
204
|
Display columns using EBN colors (BASE64)

with AxGraph1 do
begin
BeginUpdate();
VisualAppearance.Add(1,'gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASVA' +
'ceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCaJ' +
'okGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5BxE' +
'DCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQD' +
'AGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhgi' +
'oIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwKR' +
'HFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALEA' +
'Q40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJs' +
'EMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6U' +
'ZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgEDQ' +
'EMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArxw' +
'CKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6AcU' +
'AZwuAYAAAgBBAQ==');
AutoFit := True;
with Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil) do
begin
Color := TObject(16777216);
Vertical := True;
end;
EndUpdate();
end
|
203
|
Display columns using EBN colors

with AxGraph1 do
begin
BeginUpdate();
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
AutoFit := True;
Series.Add('Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)',Nil).Color := TObject(16777216);
EndUpdate();
end
|
202
|
Show images

with AxGraph1 do
begin
BeginUpdate();
set_HTMLPicture('china','c:\exontrol\images\zipdisk.gif');
set_HTMLPicture('india','c:\exontrol\images\auction.gif');
set_HTMLPicture('usa','c:\exontrol\images\colorize.gif');
set_Misc(EXGRAPHLib.MiscEnum.exShowValueIf,TObject(0));
set_Misc(EXGRAPHLib.MiscEnum.exShowLabelsIf,TObject(0));
ValueSize := 32;
with CategoryAxis do
begin
Categories := '<img>china</img>,<img>india</img>,<img>usa</img>';
MajorGridLines.Color := 'lightgray';
end;
Series.Add('1410,1390,331',Nil);
EndUpdate();
end
|
201
|
Shows a custom tooltip

// MouseMove event - Occurs when the user moves the mouse.
procedure TWinForm1.AxGraph1_MouseMoveEvent(sender: System.Object; e: AxEXGRAPHLib._IGraphEvents_MouseMoveEvent);
begin
with AxGraph1 do
begin
ShowToolTip('just a text to be shown when cursor hovers the view','title',Nil,Nil,Nil);
end
end;
with AxGraph1 do
begin
BeginUpdate();
AutoFit := True;
Series.Add('Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)',Nil);
EndUpdate();
end
|